home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / rmt / Makefile next >
Makefile  |  1989-12-17  |  161b  |  16 lines

  1. #
  2.  
  3. CFLAGS    = -O
  4. MYLIB    = ../libnet.a
  5.  
  6. all:    rmtd
  7.  
  8. #
  9.  
  10. rmtd:        rmtd.o $(MYLIB)
  11.     cc $(CFLAGS) -o $@ rmtd.o $(MYLIB)
  12.  
  13. #
  14. clean:
  15.     -rm -f *.o core a.out temp*.* myrmt rmtd
  16.